/* CSS setting for the Home Page */

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}
/* Video Styling */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;    /* Ensures the video stays behind content */
}
/* Overlay to darken the video background for readability */
.hero-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust the opacity as needed */
    z-index: 1;
}
.hero-section-image {
    height: 100vh; /* Full viewport height */
    width: 100%; /* Full width */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-section-overlay-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
.hero-text {
    position: relative;
    text-align: center;
    z-index: 2;
}


.button-group {
    display: inline-flex;   /* Group buttons in a single inline flex container */
    gap: 10px;  /* Add space between buttons */
    justify-content: center;    /* Center the buttons in the container */
}
.button-group .btn1 {
    flex: 1 1 auto; /* Make each button grow to the same width as the largest */
}

/* Parallax Section */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    padding: 5rem 0;
    color: #fff;
    text-align: center;
}

.partner-logo-lg {
    font-size: 80px;
    /* color: blue; */
}

.partner-logo-md {
    font-size: 50px;
    /* color: blue; */
}